/*右悬浮栏*/
.right-sidebar-box{
    width:70px;
    height:352px;
    position:fixed;
    right:0;
    top:150px;
    z-index: 9999999;
    background:rgba(255,255,255,1);
    box-shadow:0px 0px 10px 0px rgba(48,48,48,0.2);
    border-radius: 1px;
}

.right-sidebar-box ul{
    width: 100%;
    height: 100%;
}

.right-sidebar-box li{
    position: relative;
    width: 100%;
    height: 88px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(48,48,48,0.05);
}

.right-sidebar-box li .right-sidebar-img-box{
    width: 100%;
    height: 65%;
    position: relative;
}

.sidebar-img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sidebar-img-hover{
    display:none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.right-sidebar-box li:hover .sidebar-img-hover,.right-sidebar-box li:hover .right-sidebar-title{
    display: block;
    color:rgba(255,255,255,1);
}
.right-sidebar-box li:hover{
    background: rgb(14, 197, 161);

}

.sidebar-img-free{
    position: absolute;
    top: 0!important;
    right: 0!important;
}

.right-sidebar-title{
    display: inline-block;
    width: 100%;
    height: 20%;
    text-align: center;
    font-size:12px;
    font-family:MicrosoftYaHei;
    font-weight:400;
    color:rgba(153,153,153,1)
}

.right-sidebar-phone{
    display: none;
    position: absolute;
    left: -246px;
    top: 16px;
    width: 227px;
    height:62px;
    background:rgba(255,255,255,1);
    box-shadow:0px 0px 10px 0px rgba(48,48,48,0.1);
    border-radius:5px;
}

.right-sidebar-phone span{
    display: inline-block;
    line-height: 62px;
    text-align: center;
    width: 100%;
    font-size:16px;
    font-family:MicrosoftYaHei;
    font-weight:400;
    color:rgba(14,197,161,1);
}

.right-sidebar-phone-limit:hover .right-sidebar-phone,.right-sidebar-phone-limit:hover .right-sidebar-phone-small-box{
    display:block;
}

.right-sidebar-phone-small-box{
    display: none;
    background:rgba(255,255,255,1);
    position: absolute;
    left: -27px;
    top: 39px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-left: none;
    border-top: 1px solid rgba(48,48,48,0.05);
    border-right: 1px solid rgba(48,48,48,0.05);
    border-bottom: none;
}

